home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / program / tabvie.zip / MAINFRM.H < prev    next >
C/C++ Source or Header  |  1994-04-06  |  684b  |  37 lines

  1. // mainfrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CMainFrame : public CMDIFrameWnd
  6. {
  7.     DECLARE_DYNAMIC(CMainFrame)
  8. public:
  9.     CMainFrame();
  10.  
  11. // Attributes
  12. public:
  13.  
  14. // Operations
  15. public:
  16.  
  17. // Implementation
  18. public:
  19.     virtual ~CMainFrame();
  20. #ifdef _DEBUG
  21.     virtual    void AssertValid() const;
  22.     virtual    void Dump(CDumpContext& dc) const;
  23. #endif
  24.  
  25.  
  26.  
  27. // Generated message map functions
  28. protected:
  29.     //{{AFX_MSG(CMainFrame)
  30.     afx_msg void OnSysColorChange();
  31.     //}}AFX_MSG
  32.     DECLARE_MESSAGE_MAP()
  33. };
  34.  
  35. /////////////////////////////////////////////////////////////////////////////
  36.  
  37.